home *** CD-ROM | disk | FTP | other *** search
- /* ================
- * PedMenuEdit.hh
- * ================
- */
-
- #pragma once
-
- #include "PedMenu.hh"
-
- class PedMenuEdit : public PedMenu {
- public:
- PedMenuEdit();
- virtual void InstallCommand(PedCommand *inCmd, CmdCode inCode);
- virtual void DoMenuItem(short inItem);
- protected:
- PedCommand *mUndoCmd;
- PedCommand *mCutCmd;
- PedCommand *mCopyCmd;
- PedCommand *mPasteCmd;
- PedCommand *mClearCmd;
- PedCommand *mSelectAllCmd;
- };
-